home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / i / imagefxv2.1a.lha / ImageFX / Rexx / AutoFX / ClearBuffer.ifx < prev    next >
Text File  |  1996-03-02  |  377b  |  20 lines

  1. /*
  2.  *    Clear_Buffer.ifx
  3.  *    ClearBuffer script. Retrieves parameters from
  4.  *    ImpClearBufferParameters clip variable.
  5.  *
  6.  *    by Steve Tibbett
  7.  */
  8.  
  9. Options Results
  10.  
  11. SeqNum=Word(Arg(1),4);
  12.  
  13. Settings=GetClip("ImpClearBufferParameters"SeqNum);
  14. if (Settings="") then do
  15.     RequestNotify "ImpClearBufferParameters invalid in ImpClearBuffer.ifx"
  16.     return 20
  17.     End
  18.  
  19. ClearBuffer FORCE Settings
  20.